home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Hacks
/
Hacks ’97
/
Warrior’s Progress
/
source code
/
Source
/
Libraries
/
Keyboard
/
Keyboard Messages
/
KeyMessage.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-06-28
|
290 b
|
23 lines
|
[
TEXT/CWIE
]
// KeyMessage.h
#ifndef KeyMessage_h
#define KeyMessage_h
#ifndef Integers_h
#include "Integers.h"
#endif
#ifndef Key_h
#include "Key.h"
#endif
class KeyMessage
{
public:
virtual bool CanAppend() const;
virtual bool Append( Key );
virtual void Send() const = 0;
};
#endif